<HTML>
<HEAD>
<TITLE>Night and Day Script</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE = "JavaScript">
<!--
now = new Date();
hour = now.getHours();
if (hour > 4 && hour < 18) {
document.bgColor = "#FFFFFF";
document.fgColor = "#000000";
document.write ("<CENTER><IMG HEIGHT = 150 WIDTH = 515 SRC = 'head-pain.gif'>");
document.write ("<P>No one wants to think about RSI - until the day they can't type anymore. Are you at risk?</CENTER>");
}
else {
document.bgColor = "#000000";
document.fgColor = "#FFFFFF";
document.write ("<CENTER><IMG HEIGHT = 144 WIDTH = 515 SRC = 'head-comet.jpg'>");
document.write ("<P>Is it the End of the World or just a great light show? Find out online. </CENTER>");
}
// -->
</SCRIPT>
</BODY>
</HTML>